<xs:simpleType name="InventoryType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation xml:lang="de">
<dl>
<dt>Bestandsart</dt>
<dt>Codeliste: </dt>
<dt>1 = Akzeptierter Warenbestand</dt>
<dt>2 = Beschädigter Warenbestand</dt>
<dt>3 = Zollbestand</dt>
<dt>4 = Reservierter Bestand</dt>
</dl>
</xs:documentation>
<xs:documentation xml:lang="en">
<dl>
<dt>Type of inventory</dt>
<dt>Code list: </dt>
<dt>1 = Accepted inventory</dt>
<dt>2 = damaged inventory</dt>
<dt>3 = Customs inventory</dt>
<dt>4 = reserved Inventory</dt>
</dl>
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="1" />
<xs:enumeration value="1" />
<xs:enumeration value="2" />
<xs:enumeration value="3" />
<xs:enumeration value="4" />
</xs:restriction>
</xs:simpleType>
|